body{
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background: #010615;
}

section{
  position: relative;
  width: 100%;
/*  height: 100vh; */
  background-position: center center;
}

header{
  padding: 0 100px;
  width: 100%;
  height: 80px;
  box-sizing: border-box;
  background: #effad3;
/*  background: rgba(255, 255, 255, 0.2); */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: .5s;
}

ul{
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  float: right;
  transition: .5s;
  font-size: medium;
}

ul li{
  list-style: none;
}

ul li a{
  position: relative;
  display: block;
  padding: 10px 20px;
  margin: 20px 0;
  text-transform: uppercase;
  text-decoration: none;
  color: #262626;
  font-weight: bold;
  transition: .5s;
}

ul li a:hover{
  background: #000;
  color: #fff;
}

.toggle{
  display: none;
  position: absolute;
  right: 10px;
  top: 26px;
  background: #010615;
  color: #fff;
  padding: 5px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
}

@media (max-width: 992px){
  .toggle{
    display: block;
  }
  header{
    padding: 0 0;
    background: #effad3;
  }
  header ul{
    width: 100%;
    top: -4px;
    display: none;
  }
  header ul.active{
    display: block;
  }
  header ul li a{
    margin: 0;
    display: block;
    text-align: center;
    color: #ffff;
    background: rgba(0, 0, 0, 0.5);
  }
}
